home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / mkutil21.zip / BIN / SC32-X32.BAT < prev    next >
DOS Batch File  |  1995-02-06  |  881b  |  21 lines

  1. @echo off
  2. REM Setup for compiling with Symantec C++ 6.1 in 32 bit mode (X-32/X-32VM)
  3. REM
  4. REM Because we wish to be able to continue to compile and link programs both
  5. REM with the original Symantec C++ DOSX extender and the FlashTek X-32
  6. REM extender, we set the LIB path to point to the X32 library files first,
  7. REM so that they will be found first during the link phase.
  8.  
  9. SET INCLUDE=.;%X32VM_PATH%\INCLUDE;%SC_PATH%\INCLUDE;%SCITECH%\INCLUDE;%SC_PATH%\INCLUDE\WIN16;%SC_PATH%\INCLUDE\WIN32;%SC_PATH%\MFC\INCLUDE
  10. SET LIB=%X32VM_PATH%\LIB;%SC_PATH%\LIB;%SC_PATH%\MFC\LIB;%SCITECH%\LIB\SC32;.
  11. SET HELP=%SC_PATH%\HELP
  12. SET MAKESTARTUP=%SCITECH%\MAKEDEFS\SC32.MK
  13. SET USE_TNT=
  14. SET USE_X32VM=
  15. SET USE_WIN32=
  16. SET USE_X32=1
  17. PATH %SCITECH%\BIN;%SC_PATH%\BIN;%SC_PATH%\BIN;%DEFPATH%%SC_CD_PATH%
  18.  
  19. echo Symantec C++ 6.1 32 bit compilation environment set up (X-32/X-32VM)
  20.  
  21.